home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 April / Designer's Club 1998 April.iso / pc / Ideasrc / SPLASH.DIR / 00018_Script_18 < prev    next >
Text File  |  1998-03-13  |  536b  |  25 lines

  1. on exitFrame
  2.   
  3.   go the frame
  4.   
  5.   if rollover(4) then go frame "face1"
  6.   if rollover(5) then go frame "face2"
  7.   if rollover(6) then go frame "face3"
  8.   if rollover(7) then go frame "face4"
  9.   if rollover(8) then go frame "face5"
  10.   
  11.   repeat with n=15 to 19
  12.     if rollover(n) then
  13.       set the visible of sprite n to false
  14.       updatestage
  15.     end if
  16.   end repeat
  17.   
  18.   repeat with n=15 to 19
  19.     if not rollover(n) then
  20.       set the visible of sprite n to true
  21.       updatestage
  22.     end if
  23.   end repeat
  24.   
  25. end